home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility1 / gs261src.zip / GDEVSPPR.C < prev    next >
C/C++ Source or Header  |  1993-05-13  |  6KB  |  200 lines

  1. /* Copyright (C) 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gdevsppr.c */
  20. /* SPARCprinter driver for Ghostscript */
  21. #include "gdevprn.h"
  22. #include <stdio.h>
  23. #include <sys/types.h>
  24. #include <sys/ioccom.h>
  25. #include <unbdev/lpviio.h>
  26.  
  27. /*
  28.    Thanks to Martin Schulte (schulte@thp.Uni-Koeln.DE) for contributing
  29.    this driver to Ghostscript.  He supplied the following notes.
  30.  
  31. The device-driver (normally) returns two differnt types of Error-Conditions,
  32. FATALS and WARNINGS. In case of a fatal, the print routine returns -1, in
  33. case of a warning (such as paper out), a string describing the error is
  34. printed to stdout and the output-operation is repeated after five seconds.
  35.  
  36. A problem is that not all possible errors seem to return the correct error,
  37. under some circumstance I get the same response as if an error repeated,
  38. that's why there is this the strange code about guessing the error.
  39.  
  40. I didn't implement asynchronous IO (yet), because "`normal"' multipage-
  41. printings like TEX-Output seem to be printed with the maximum speed whereas
  42. drawings normally occur as one-page outputs, where asynchronous IO doesn't
  43. help anyway.
  44. */
  45.  
  46. private dev_proc_open_device(sparc_open);
  47. private dev_proc_get_initial_matrix(sparc_get_initial_matrix);
  48. private dev_proc_print_page(sparc_print_page);
  49.  
  50. #define SPARC_MARGINS_A4    0.15, 0.12, 0.12, 0.15
  51. #define SPARC_MARGINS_LETTER    0.15, 0.12, 0.12, 0.15
  52.  
  53. gx_device_procs prn_sparc_procs =
  54.   prn_matrix_procs(sparc_open, sparc_get_initial_matrix,
  55.     gdev_prn_output_page, gdev_prn_close);
  56.  
  57. gx_device_printer gs_sparc_device = prn_device(prn_sparc_procs,
  58.   "sparc",
  59.   DEFAULT_WIDTH_10THS,DEFAULT_HEIGHT_10THS,
  60.   400,400,
  61.   0,0,0,0,
  62.   1,
  63.   sparc_print_page);
  64.  
  65. /* Open the printer, and set the margins. */
  66. private int
  67. sparc_open(gx_device *pdev)
  68. {       /* Change the margins according to the paper size. */
  69.         const float _ds *m;
  70.         static const float m_a4[4] = { SPARC_MARGINS_A4 };
  71.         static const float m_letter[4] = { SPARC_MARGINS_LETTER };
  72.  
  73.     m = (pdev->height / pdev->y_pixels_per_inch >= 11.1 ? m_a4 : m_letter);
  74.         pdev->l_margin = m[0];
  75.         pdev->b_margin = m[1];
  76.         pdev->r_margin = m[2];
  77.         pdev->t_margin = m[3];
  78.         return gdev_prn_open(pdev);
  79. }
  80.  
  81. /* Shift the origin from the top left corner of the pysical page to the
  82.    first printable pixel, as defined by the top and left margins. */
  83. private void
  84. sparc_get_initial_matrix(gx_device *dev, gs_matrix *pmat)
  85. {       gx_default_get_initial_matrix(dev, pmat);
  86.     pmat->tx -= dev->l_margin * dev->x_pixels_per_inch;
  87.     pmat->ty -= dev->t_margin * dev->y_pixels_per_inch;
  88. }
  89.  
  90. char *errmsg[]={
  91.   "EMOTOR",
  92.   "EROS",
  93.   "EFUSER",
  94.   "XEROFAIL",
  95.   "ILCKOPEN",
  96.   "NOTRAY",
  97.   "NOPAPR",
  98.   "XITJAM",
  99.   "MISFEED",
  100.   "WDRUMX",
  101.   "WDEVEX",
  102.   "NODRUM",
  103.   "NODEVE",
  104.   "EDRUMX",
  105.   "EDEVEX",
  106.   "ENGCOLD",
  107.   "TIMEOUT",
  108.   "EDMA",
  109.   "ESERIAL"
  110.   };
  111.  
  112. private char *err_code_string(int err_code)
  113.   {
  114.   if ((err_code<EMOTOR)||(err_code>ESERIAL))
  115.     {
  116.     char buffer[80];
  117.     sprintf(buffer,"err_code out of range: %d",err_code);
  118.     return buffer;
  119.     }
  120.   return errmsg[err_code];
  121.   }
  122.  
  123. int warning=0;
  124.  
  125. private int sparc_print_page(gx_device_printer *pdev, FILE *prn)
  126.   {
  127.   struct lpvi_page lpvipage;
  128.   struct lpvi_err lpvierr;
  129.   char *out_buf;
  130.   int out_size;
  131.   if (ioctl(fileno(prn),LPVIIOC_GETPAGE,&lpvipage)!=0)
  132.     {
  133.     fprintf(stderr,"sparc_print_page: LPVIIOC_GETPAGE failed\n");
  134.     return -1;
  135.     }
  136.   lpvipage.bitmap_width=gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  137.   lpvipage.page_width=lpvipage.bitmap_width*8;
  138.   lpvipage.page_length=pdev->height;
  139.   lpvipage.resolution= (pdev->x_pixels_per_inch == 300 ? 300 : 400);
  140.   if (ioctl(fileno(prn),LPVIIOC_SETPAGE,&lpvipage)!=0)
  141.     {
  142.     fprintf(stderr,"sparc_print_page: LPVIIOC_SETPAGE failed\n");
  143.     return -1;
  144.     }
  145.   out_size=lpvipage.bitmap_width*lpvipage.page_length;
  146.   out_buf=gs_malloc(out_size,1,"sparc_print_page: out_buf");
  147.   gdev_prn_copy_scan_lines(pdev,0,out_buf,out_size);
  148.   while (write(fileno(prn),out_buf,out_size)!=out_size)
  149.     {
  150.     if (ioctl(fileno(prn),LPVIIOC_GETERR,&lpvierr)!=0)
  151.       {
  152.       fprintf(stderr,"sparc_print_page: LPVIIOC_GETERR failed\n");
  153.       return -1;
  154.       }
  155.     switch (lpvierr.err_type)
  156.       {
  157.       case 0:
  158.         if (warning==0)
  159.           {
  160.           fprintf(stderr,
  161.             "sparc_print_page: Printer Problem with unknown reason...");
  162.           fflush(stderr);
  163.           warning=1;
  164.           }
  165.         sleep(5);
  166.         break;
  167.       case ENGWARN:
  168.         fprintf(stderr,
  169.           "sparc_print_page: Printer-Warning: %s...",
  170.           err_code_string(lpvierr.err_code));
  171.         fflush(stderr);
  172.         warning=1;
  173.         sleep(5);
  174.         break;
  175.       case ENGFATL:
  176.         fprintf(stderr,
  177.           "sparc_print_page: Printer-Fatal: %s\n",
  178.           err_code_string(lpvierr.err_code));
  179.         return -1;
  180.       case EDRVR:
  181.         fprintf(stderr,
  182.           "sparc_print_page: Interface/driver error: %s\n",
  183.           err_code_string(lpvierr.err_code));
  184.         return -1;
  185.       default:
  186.         fprintf(stderr,
  187.           "sparc_print_page: Unknown err_type=%d(err_code=%d)\n",
  188.           lpvierr.err_type,lpvierr.err_code);
  189.         return -1;
  190.       }
  191.     }
  192.   if (warning==1)
  193.     {
  194.     fprintf(stderr,"OK.\n");
  195.     warning=0;
  196.     }
  197.   gs_free(out_buf,out_size,1,"sparc_print_page: out_buf");
  198.   return 0;
  199.   }
  200.